.explor_created_by_suva{
    width: 100%;
    height: auto;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    font-family: var(--font-heading);
}
.explor_created_by_suva .left{
    height: 350px;
    width: 420px;
    padding-left: 20px;
    /* border: 1px solid var(--paragraph-color); */
}
.explor_created_by_suva .left .courses{
    width: 100%;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 16px;
    text-transform: uppercase;
}
a{
    text-decoration: none;
}
.explor_created_by_suva .left .courses i{
    margin-right:6px;
}
.explor_created_by_suva .left .explor{
    width: 75.2%;
    height: 80px;
    align-content: center;
    border-bottom: 3px solid var(--border);
    font-weight: 600;
    font-size: 25px;
    border-radius:0 0 13px 0;
    text-transform: capitalize;
}
.explor_created_by_suva .left .view{
    width: 60%;
}
.explor_created_by_suva .left .view .btn{
    width: auto;
    padding: 15px 0;
    width: 260px;
    text-align: center;
    border-radius: 6px;
    outline: none;
    border: none;
    margin-top: 50px;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--common-color);
    overflow: hidden;
    z-index: 2;
    background-color: var(--secondary-color);
}
.explor_created_by_suva .left .view .btn::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
    transition: all ease .5s;
}
.explor_created_by_suva .left .view .btn:hover::after{
    left: -100%;
}
.explor_created_by_suva .left .view .btn::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    right: 0;
    top: 0;
    z-index: -1;
    transition: all ease .5s;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.explor_created_by_suva .left .view .btn:hover::before{
    right: -100%;
}

.explor_created_by_suva .right{
    height: auto;
    width: 860px;
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    margin-top: 27px;
    justify-content: space-evenly;
    border-radius: 8px 0 0 0;
    position: relative;
    border-top: 3px solid var(--border);
}
.explor_created_by_suva .right::after{
    position: absolute;
    content: '';
    height: 144px;
    top: -29px;
    left: -55px;
    rotate: 233deg;
    width: 3px;
    background-color: var(--border);
}
.explor_created_by_suva .right .box{
    background-color: var(--common-color);
    height: 210px;
    border-radius: 8px;
    margin-top: 40px;
    width: 250px;
    align-content: center;
    justify-items: center;
    box-shadow: 0 0 10px -3px #d4d4d4;
}
.explor_created_by_suva .right .box:hover .icon .boxx{
    background-color: var(--primary-color);
    color: var(--common-color);
}
.explor_created_by_suva .right .box .icon{
    width: 100%;
    height: auto;
    justify-items: center;
    margin-bottom: 15px;
}
.explor_created_by_suva .right .box .icon .boxx{
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transition: all ease .5s;
    color: var(--anik-color);
    border-radius: 50%;
    background:linear-gradient(376deg, #033053, #1679c5);
}
.explor_created_by_suva .right .box .icon .boxx i{
    color: white;
}
.explor_created_by_suva .right .box h4{
    width: 100%;
    text-align: center;
    color: var(--black-color);
    margin-bottom: 4px;
}
.explor_created_by_suva .right .box p{
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 4px;
    font-weight: 600;
    opacity: .8;
    margin-bottom: 15px;
}
.explor_created_by_suva .right .box .more{
    padding: 12px 18px;
    text-transform: uppercase;
    background-color: var(--primary-color);
    border-radius: 6px;
    color: var(--common-color);
    font-size: 16px;
    font-weight: 600;
    z-index: 3;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.explor_created_by_suva .right .box .more::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--secondary-color);
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
    transition: all ease .5s;
}
.explor_created_by_suva .right .box .more:hover::after{
    left: -100%;
}
.explor_created_by_suva .right .box .more::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--secondary-color);
    right: 0;
    top: 0;
    z-index: -1;
    transition: all ease .5s;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.explor_created_by_suva .right .box .more:hover::before{
    right: -100%;
}
.explor_created_by_suva .right .box .more i{
    margin-left: 3px;
}
